SetBreakpointOnFunctionCallRequest

data class SetBreakpointOnFunctionCallRequest(objectId: RemoteObjectId, condition: String?)

Represents request frame that can be used with Debugger#setBreakpointOnFunctionCall operation call.

Sets JavaScript breakpoint before each call to the given function. If another function was created from the same source as a given one, calling it will also trigger the breakpoint.

See also

Constructors

SetBreakpointOnFunctionCallRequest
Link copied to clipboard
fun SetBreakpointOnFunctionCallRequest(objectId: RemoteObjectId, condition: String? = null)

Properties

condition
Link copied to clipboard
val condition: String? = null
Expression to use as a breakpoint condition.
objectId
Link copied to clipboard
val objectId: RemoteObjectId
Function object id.

Sources

jvm source
Link copied to clipboard